home *** CD-ROM | disk | FTP | other *** search
- // GRAPHIC CHART PARAMETERS
-
- /*
- * PAGES
- *
- */
- var i32x cPageTitleColor;
-
- /*
- * LISTBOX
- *
- */
- var i32x cListBoxBackground;
- var i32x cListBoxTitleBackground;
- var i32x cListBoxTitleForground;
- var i32x iListBoxFieldPadding;
-
-
- /*
- * TABLES
- *
- */
- var i32x cTableEvenRowBackColor;
- var i32x cTableOddRowBackColor;
- var i32x cTableColumnTitleColor;
- var i32x cTableSelectColor;
- var i32x cTableLineColor; // color for separation lines
- var i32x iTableLineWidth; // width for separation lines
- var i32x iTableGapWidth; // gap between rows
-
- /*
- * HINTS
- *
- */
- var Menu_Material pHintFont;
- var i32x cHintTextColor;
- var i32x cHintBackColor;
- var f32x fHintDelay;
-
-
- /*
- * LOADING
- *
- */
- var i32x cLoadingBackColor;
- var Menu_Material smLoadingFont;
- var i32x cLoadingFontColor;
- var i32x cLoadingGaugeColor;
-
-
- func void g_Chart_Load()
- {
- // PAGES
- cPageTitleColor = MakeARGB(255, 19, 64, 104);
-
- // TABLES
- cTableEvenRowBackColor = MakeARGB(90, 255, 255, 255);
- cTableOddRowBackColor = MakeARGB(90, 100, 100, 255);
- cTableSelectColor = MakeARGB(150, 189, 252, 164);
- cTableLineColor = MakeARGB(255, 255, 255, 255);
- cTableColumnTitleColor = MakeARGB(120, 100, 255, 30);
- iTableLineWidth = 2;
- iTableGapWidth = 4;
-
- // LISTBOX
- cListBoxBackground = MakeARGB(90, 150, 150, 180);
- // cListBoxTitleBackground = MakeARGB(120, 100, 100, 255);
- cListBoxTitleBackground = MakeARGB(150, 189, 190, 173);
- cListBoxTitleForground = MakeARGB(255, 255, 255, 255);
- iListBoxFieldPadding = 5; // space between text and field border
-
- // HINTS
- pHintFont = smTrebuchet;
- cHintTextColor = MakeARGB(255, 0, 0, 0);
- cHintBackColor = MakeARGB(255, 255, 255, 212);
- fHintDelay = 1000.0; // one second
-
- // LOADING
- cLoadingBackColor = MakeARGB(62, 0, 255, 255);
- smLoadingFont = smBauer;
- cLoadingFontColor = MakeARGB(255, 255, 255, 255);
- cLoadingGaugeColor = cEBColor;
- }